home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
221_01
/
strcpy.c
< prev
next >
Wrap
Text File
|
1980-01-01
|
128b
|
7 lines
/*
** copy string t to s
*/
strcpy(s, t) char *s, *t; {
while(*s++ = *t++) ;
}